home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dr. Windows 3
/
dr win3.zip
/
dr win3
/
PROGRAMR
/
WPJV1N2.ZIP
/
HAXTON.ZIP
/
LIB2.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-28
|
590b
|
27 lines
//*************************************************
//* lib2.c: Handles lib2.dll initialization
//* R.E.Haxton '93
//**************************************************
#define NOCOMM
#define _WINDOWS
#define _WINDLL /* DLLs need this define. It blocks out */
/* declarations that DLLs do not use */
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int FAR PASCAL LibMain(HANDLE hInstance, WORD wDataSeg, WORD wHeapSize,
LPSTR lpszCmdLine)
{
if(wHeapSize != 0)
UnlockData(0);
return(1);
} /* LibMain */